type net/http.http2StreamError

29 uses

	net/http (current package)
		h2_bundle.go#L1237: type http2StreamError struct {
		h2_bundle.go#L1248: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1249: 	return http2StreamError{StreamID: id, Code: code}
		h2_bundle.go#L1252: func (e http2StreamError) Error() string {
		h2_bundle.go#L1888: 	if _, ok := err.(http2StreamError); ok {
		h2_bundle.go#L3046: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
		h2_bundle.go#L3053: 		return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
		h2_bundle.go#L4814: 			if se, ok := wr.write.(http2StreamError); ok {
		h2_bundle.go#L5054: 		_, isReset := wr.write.(http2StreamError)
		h2_bundle.go#L5104: 			case http2StreamError, http2handlerPanicRST, http2writeWindowUpdate:
		h2_bundle.go#L5188: 		case http2StreamError:
		h2_bundle.go#L5308: func (sc *http2serverConn) resetStream(se http2StreamError) {
		h2_bundle.go#L5351: 	case http2StreamError:
		h2_bundle.go#L5533: 	if e, ok := err.(http2StreamError); ok {
		h2_bundle.go#L5790: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2StreamError{
		h2_bundle.go#L7149: 	case http2StreamError:
		h2_bundle.go#L7825: 	if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L8779: 			if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9503: 		if se, ok := err.(http2StreamError); ok {
		h2_bundle.go#L9564: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9593: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9902: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9910: 		rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L9919: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L10137: 			rl.endStreamError(cs, http2StreamError{
		h2_bundle.go#L10589: func (se http2StreamError) writeFrame(ctx http2writeContext) error {
		h2_bundle.go#L10593: func (se http2StreamError) staysWithinBuffer(max int) bool { return http2frameHeaderLen+4 <= max }
		h2_bundle.go#L10895: 		if se, ok := wr.write.(http2StreamError); ok {
		h2_error.go#L13: func (e http2StreamError) As(target any) bool {